home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / iplanet_perf.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  66 lines

  1. #
  2. # This script was written by Sullo (sullo@cirt.net)
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(11220);
  8.  script_version ("$Revision: 1.2 $");
  9.  name["english"] = "Netscape /.perf accessible";
  10.  name["francais"] = "Netscape /.perf accessible";
  11.  
  12.  script_name(english:name["english"], francais:name["francais"]);
  13.  
  14.  desc["english"] = "
  15. Requesting the URI /.perf gives information about
  16. the currently running Netscape/iPlanet web server.
  17.  
  18. Risk factor : Low
  19. Solution : If you don't use this feature, server monitoring should be
  20. disabled in the magnus.conf file or web server admin.";
  21.  
  22.  script_description(english:desc["english"]);
  23.  
  24.  summary["english"] = "Makes a request like http://www.example.com/.perf";
  25.  summary["francais"] = "Fait une requΩte du type http://www.example.com/.perf";
  26.  script_summary(english:summary["english"], francais:summary["francais"]);
  27.  
  28.  script_category(ACT_GATHER_INFO);
  29.  
  30.  
  31.  script_copyright(english:"This script is Copyright (C) 2003 Sullo",
  32.         francais:"Ce script est Copyright (C) 2003 Sullo");
  33.  family["english"] = "Misc.";
  34.  family["francais"] = "Divers";
  35.  script_family(english:family["english"], francais:family["francais"]);
  36.  script_dependencie("find_service.nes", "http_version.nasl");
  37.  script_require_ports("Services/www", 80);
  38.  script_require_keys("www/netscape-commerce", "www/netscape-fasttrack", "www/iplanet");
  39.  exit(0);
  40. }
  41.  
  42. #
  43. # The script code starts here
  44. #
  45.  
  46. include("http_func.inc");
  47.  
  48. port = get_http_port(default:80);
  49. str = "ListenSocket";
  50.  
  51. if(get_port_state(port))
  52. {
  53.  soc = http_open_socket(port);
  54.  if(soc)
  55.  {
  56.   buffer = http_get(item:"/.perf", port:port);
  57.   send(socket:soc, data:buffer);
  58.   data = http_recv(socket:soc);
  59.   if( str >< data )
  60.   {
  61.    security_warning(port);
  62.   }
  63.   http_close_socket(soc);
  64.  }
  65. }
  66.